home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-01-02 | 590 b | 27 lines | [TEXT/????] |
- //
- // INITSTRM.H
- //
- // Copyright (C) Microsoft Corporation, 1996
- //
-
- class CXSite; // Forward reference
-
- class CInitialDataStreamNotify:
- public CMemoryOleStreamNotify
- {
- public:
- // Back pointer to the site that's waiting for it's initial data stream.
- CXSite *m_pSite;
-
- inline CInitialDataStreamNotify(CXSite *pSite);
-
- //jjo this wasn't defined so I made it inline
- virtual NPError OnDestroyStream(NPStream *stream, NPError reason);
- };
-
- inline
- CInitialDataStreamNotify::CInitialDataStreamNotify(CXSite *pSite)
- {
- m_pSite = pSite;
- }
-